Desktop: retheme launcher chrome to dark cockpit; bump to 0.1.1#49
Merged
Conversation
The thin-client web UI already updates with the dashboard, but the desktop app's own connect/opening/error screens were still light-themed (Inter, #f6f8fb). Retheme src/styles.css to match the redesign: all-dark bg, monospace, cyan/green accents, ▸ prompt on the eyebrow label, dark inputs + cyan primary buttons. Bump version 0.1.0 -> 0.1.1. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the desktop app’s look-and-feel to a darker, mono-styled UI and bumps the app version across Tauri/Rust/npm manifests.
Changes:
- Switch global palette to dark theme and adjust typography (monospace) and component colors.
- Add minor UI styling enhancements (e.g., eyebrow prefix, updated hover/border styling).
- Bump version from 0.1.0 to 0.1.1 across config/manifests.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| desktop/src/styles.css | Introduces dark theme palette, typography updates, and component style tweaks. |
| desktop/src-tauri/tauri.conf.json | Bumps Tauri app version to 0.1.1. |
| desktop/src-tauri/Cargo.toml | Bumps Rust crate version to 0.1.1. |
| desktop/package.json | Bumps npm package version to 0.1.1. |
Comments suppressed due to low confidence (1)
desktop/src/styles.css:1
- Buttons have hover styling but no visible focus state, which makes keyboard navigation difficult. Add a
button:focus-visible(and optionallybutton.secondary:focus-visible) style with a clear outline/box-shadow that meets contrast requirements.
:root {
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+80
to
+83
| .eyebrow::before { | ||
| content: "\25B8 "; | ||
| color: #72f7c8; | ||
| } |
Comment on lines
1
to
9
| :root { | ||
| color: #17202a; | ||
| background: #f6f8fb; | ||
| color: #edf7ff; | ||
| background: #070b10; | ||
| font-family: | ||
| Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | ||
| "Cascadia Mono", "JetBrains Mono", "SFMono-Regular", ui-monospace, Consolas, monospace; | ||
| font-synthesis: none; | ||
| text-rendering: optimizeLegibility; | ||
| -webkit-font-smoothing: antialiased; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The desktop app is a thin client (the web UI auto-updates with the dashboard), but its own connect / opening / error screens were still light-themed (Inter,
#f6f8fb). Rethemedesktop/src/styles.cssto match the redesign:▸prompt on the eyebrow label, dark inputs, cyan primary buttonsVersion bumped 0.1.0 → 0.1.1 (package.json / tauri.conf.json / Cargo.toml). Merging triggers a
desktop-v0.1.1-dev.*prerelease build; adesktop-v0.1.1tag will cut the stable.🤖 Generated with Claude Code